home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
perl5
/
URI
/
ldapi.pm
< prev
next >
Wrap
Text File
|
2004-01-01
|
460b
|
31 lines
package URI::ldapi;
use strict;
use vars qw(@ISA);
require URI::_generic;
require URI::_ldap;
@ISA=qw(URI::_ldap URI::_generic);
require URI::Escape;
sub un_path {
my $self = shift;
my $old = URI::Escape::uri_unescape($self->authority);
if (@_) {
my $p = shift;
$p =~ s/:/%3A/g;
$p =~ s/\@/%40/g;
$self->authority($p);
}
return $old;
}
sub _nonldap_canonical {
my $self = shift;
$self->URI::_generic::canonical(@_);
}
1;